home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / tests / logops.tst < prev    next >
Text File  |  1999-09-16  |  2KB  |  85 lines

  1. //simple ops
  2. if 1==0 then pause,end
  3. if 1<0 then pause,end
  4. if 1<=0 then pause,end
  5. if 1==1 then,else pause,end
  6. if ~(1==1) then pause,end
  7. if 0>1 then pause,end
  8. if 0>=1 then pause,end
  9. if 1<>1 then pause,end
  10. if 0<>1 then,else pause,end
  11. if '1'=='0' then pause,end
  12. if '1'<>'1' then pause,end
  13.  
  14. %s=poly(0,'s');
  15. if %s==0 then pause,end
  16. if 0==%s then pause,end
  17. if %s==%s then,else pause,end
  18. if %s<>%s then pause,end
  19. if %s==%s+1 then pause,end
  20. if %s+1==%s then pause,end
  21.  
  22. if 1/%s==0 then pause,end
  23. if 0==1/%s then pause,end
  24. if 1/%s==1/%s then,else pause,end
  25. if 1/%s<>1/%s then pause,end
  26. if 1/%s==1/%s+1 then pause,end
  27. if 1/%s+1==1/%s then pause,end
  28. if 1/%s<>1/%s+1 then , else  pause,end
  29. if 1/%s+1<>1/%s then , else  pause,end
  30.  
  31. l=list(1,[1 23],'adssa')
  32. l1=list(123,'sdwqqwq')
  33. if l==0 then pause,end
  34. if 0==l then pause,end
  35. if l==l then,else pause,end
  36. if l<>l then pause,end
  37. if l==l1 then pause,end
  38. if l1==l then pause,end
  39. if l<>l1 then , else pause,end
  40. if l1<>l then , else pause,end
  41.  
  42.  
  43. if %t&1==2 then pause,end
  44. if %t|1==2 then, else pause,end
  45. if %t&-1==2 then pause,end
  46. if %t|-1==2 then, else pause,end
  47. if 1<2&1==2 then pause,end
  48. if 1<2|1==2 then, else pause,end
  49. if 1<2&-1==2 then pause,end
  50. if 1<2|-1==2 then, else pause,end
  51. if 2>1&1==2 then pause,end
  52. if 2>1|1==2 then, else pause,end
  53. if 2>1&-1==2 then pause,end
  54. if 2>1|-1==2 then, else pause,end
  55. if 1==1&1==2 then pause,end
  56. if 1==1|1==2 then, else pause,end
  57. if 1==1&-1==2 then pause,end
  58. if 1==1|-1==2 then, else pause,end
  59. if 1<>2&1==2 then pause,end
  60. if 1<>2|1==2 then, else pause,end
  61. if 1<>2&-1==2 then pause,end
  62. if 1<>2|-1==2 then, else pause,end
  63.  
  64. if %t&1>2 then pause,end
  65. if %t|1>2 then, else pause,end
  66. if %t&-1>2 then pause,end
  67. if %t|-1>2 then, else pause,end
  68. if 1<2&1>2 then pause,end
  69. if 1<2|1>2 then, else pause,end
  70. if 1<2&-1>2 then pause,end
  71. if 1<2|-1>2 then, else pause,end
  72. if 2>1&1>2 then pause,end
  73. if 2>1|1>2 then, else pause,end
  74. if 2>1&-1>2 then pause,end
  75. if 2>1|-1>2 then, else pause,end
  76. if 1==1&1>2 then pause,end
  77. if 1==1|1>2 then, else pause,end
  78. if 1==1&-1>2 then pause,end
  79. if 1==1|-1>2 then, else pause,end
  80. if 1<>2&1>2 then pause,end
  81. if 1<>2|1>2 then, else pause,end
  82. if 1<>2&-1>2 then pause,end
  83. if 1<>2|-1>2 then, else pause,end
  84.  
  85.